home *** CD-ROM | disk | FTP | other *** search
- /*
- Visual FX
- For
- Image FX
- SetUp Script
- Written By J.L. White
-
- (C)1997 Merlin's Software
-
- */
- parse arg Num
- options results
- address "IMAGEFX.1"
-
-
- Gadget.1 = 'Select Direction To Move Screen!'
- Gadget.2 = 'From Top Left'
- Gadget.3 = 'From Bottom Left'
- Gadget.4 = 'From Top Right'
- Gadget.5 = 'From Bottom Right'
- ListRequest 5 Gadget
- Type = 0
- if result = 2 then Type = 0
- if result = 3 then Type = 1
- if result = 4 then Type = 2
- if result = 5 then Type = 3
-
- call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
- call writeln TempFile,Type
- call close TempFile
-